home *** CD-ROM | disk | FTP | other *** search
- stop();
- var moveline = random(2) + 3;
- var yinc = 0;
- _parent._parent.score += 50;
- onEnterFrame = function()
- {
- this._rotation -= 60;
- yinc += 1;
- this._y -= yinc;
- if(_parent._parent.man._xscale == 100)
- {
- this._x += 3 * moveline;
- }
- else
- {
- this._x -= 3 * moveline;
- }
- };
-